home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / LFolderWatcher (PP) / LFolderWatcher.sit / LFolderWatcher / LFSSpecComparator.h < prev    next >
Text File  |  1995-08-27  |  1KB  |  38 lines

  1. // ===========================================================================
  2. //    LFSSpecComparator.h            ⌐ 1995, âric Forget. All rights reserved.
  3. // ===========================================================================
  4. //    
  5. //    ************************************************************************
  6. //    *                                                                      *
  7. //    *    Before using this code you should read the "License Agreement"     *
  8. //    *    document and agree with it.                                        *
  9. //    *                                                                      *
  10. //    ************************************************************************
  11. //
  12. //    Instruction and usage notes are in the LFSSPecComparator.cp file.
  13. //
  14. // ---------------------------------------------------------------------------
  15.  
  16.  
  17. #pragma once
  18.  
  19.  
  20. #include    <LComparator.h>
  21.  
  22.  
  23. // ---------------------------------------------------------------------------
  24. //        Ñ Classe LFSSpecComparator
  25. // ---------------------------------------------------------------------------
  26.  
  27. class LFSSpecComparator:    public LComparator {
  28.  
  29. public:
  30.  
  31.                         LFSSpecComparator();
  32.     virtual                ~LFSSpecComparator();
  33.     
  34.     virtual Int32        Compare(const void* inCompData1, const void* inCompData2) const;
  35.     
  36. };
  37.  
  38.